home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00288_Script_Magnify < prev    next >
Text File  |  1999-02-25  |  2KB  |  49 lines

  1. property origSprite, csprite1, csprite2, csprite3,
  2. on mouseUp me
  3.   set the stretch of sprite origSprite = TRUE
  4.   set the stretch of sprite csprite1 = TRUE
  5.   set the stretch of sprite csprite2 = TRUE
  6.   set the stretch of sprite csprite3 = TRUE
  7.   
  8.   
  9.   
  10.   set the width of sprite origSprite = the width of sprite origSprite * 1.2
  11.   set the width of sprite csprite1 = the height of sprite csprite1
  12.   set the width of sprite csprite2 = the width of sprite csprite1
  13.   set the width of sprite csprite3 = the width of sprite csprite1
  14.   
  15.   
  16.   set the height of sprite origSprite = the height of sprite origSprite * 1.2
  17.   set the height of sprite csprite1 = the height of sprite origSprite * 0.1
  18.   set the height of sprite csprite2 = the height of sprite csprite1
  19.   set the height of sprite csprite3 = the height of sprite csprite1
  20.   
  21.   
  22.   
  23.   
  24.   updateStage
  25.   puppetSound 2, "click"
  26. end
  27.  
  28.  
  29. on getPropertyDescriptionList
  30.   
  31.   set p_list = [ ¼
  32.  origSprite : [ #comment:   " Screen:", ¼
  33.                                #format:   #integer, ¼
  34.                               #default:    1 ] , ¼
  35.   csprite1 : [ #comment:   "Control Sprite 1:", ¼
  36.                                #format:   #integer, ¼
  37.                               #default:    1 ] , ¼
  38.   csprite2 : [ #comment:   "Control Sprite 2:", ¼
  39.                                #format:   #integer, ¼
  40.                               #default:    2 ] , ¼
  41.   csprite3 : [ #comment:   "Control Sprite 3:", ¼
  42.                                #format:   #integer, ¼
  43.                               #default:    3 ]¼
  44.   ]
  45.   
  46.   return p_list
  47.   
  48. end
  49.